All Questions
72 questions
6votes
1answer
334views
Simple XML string to user-friendly plain text converter method in Java
I want to write a simple method in Java to convert XML to some user-friendly plain format (like YAML, etc.). Attributes, null, empty or zero values should not be taken into account. Also, documents ...
0votes
1answer
106views
Retrieve data from an XML file in Java
few months back I did a code test for a company and I quickly managed to solve it within 5-10 minutes. But, I got rejected because it wasnt "good enough". What is good enough? they said its ...
0votes
0answers
1kviews
Extract series of XML elements' values into an array
This code needs to extract data from in XML file. Specifically it needs to iterate over it, looking for a node called CHARGE_CODES that repeats over and over and ...
2votes
1answer
2kviews
Java CSV to XML converter
I'm relatively new to programming and I was trying to work a project. I would like recommendations of how to annotate or comment my project and any improvement I could make to it, any suggestion is ...
4votes
1answer
125views
Scheduled Notifications (First Android App)
I'm happy to present my first Android project, which collects market index data (three Asian indices) and fires a notificaiton every Wednesday, Thursday and Friday at 7:30 AM displaying the data. I've ...
5votes
4answers
4kviews
Make my XML Parser in Java using WoodStox run faster and use less memory, or just generally better
I have an XML Parser in Java using WoodStox that I wrote. This parser is going to be parsing through extremely large files, could be 5+GB. The goal of the parser is to convert a nest XML file into a ...
1vote
0answers
2kviews
Escaping invalid XML characters (e.g. for the Java DOM API)
I want to save and load an arbitrary Java String in a Text node in a XML file using the Java DOM API. The ...
4votes
1answer
126views
Deserializing an XML Object without Reflection / Meta-Programming
I need to deserialize an XML file, without using any sort of "reflection" (or meta-programming). Instead, I need to do it via a raw object, that knows of it's structure and can properly identify and ...
2votes
1answer
161views
Calendar holidays to XML
We are writing program which makes XML file which is a calendar with all free days in Poland (Saturdays, Sundays, and all hollidays). We tried to write this code as readable as possible so probably no ...
1vote
1answer
176views
Sign Up layout in android
I have created a sign up layout as image below. Does this part of code looked bad since the dp I used for the floating button are quite large. ...
3votes
3answers
126views
Transforming XML with null checks vs variables
I'm working on an Spring Integration application that transforms a XML (converted by Jaxb) into a custom Object by checking various information given in the XML. The problem is that I can't trust ...
3votes
1answer
2kviews
XML Parser written in Java
Accepts a String (or a char array) as an input and stores the data in a tree structure. For example, given the input: ...
2votes
0answers
43views
XML Input Parser To Load Test Data into Dev Database
I wrote an XML input transformer to ingest data from test directory and essentially store anything into a DB table. I attempted to make this as generic as possible. I'm new to Java and also realize ...
1vote
2answers
129views
Rewrite XML generator in Java
I was given a program that generates XML, filters and sorts the elements. The program was rather terrible on purpose because it is an assignment. The original output looked like the following: ...
1vote
1answer
224views
Mini game for android
For Android in this mini game the monkey catches nice bananas and coconuts. It was somewhat more problematic to create the layout in XML compared to the small game engine and controls. Maybe we can ...